home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1995 March / PC Plus Super CD (Issue 101) (March 1995).iso / sharewar / vbaddon / vbfiles / ffuture.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-08-16  |  2.6 KB  |  86 lines

  1. VERSION 2.00
  2. Begin Form ffuture 
  3.    BackColor       =   &H00C0C0C0&
  4.    Caption         =   "New Tools"
  5.    ClientHeight    =   1695
  6.    ClientLeft      =   1260
  7.    ClientTop       =   3120
  8.    ClientWidth     =   5925
  9.    Height          =   2160
  10.    Left            =   1170
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   1695
  13.    ScaleWidth      =   5925
  14.    Top             =   2745
  15.    Width           =   6105
  16.    Begin vsInForm VSInForm1 
  17.       BarColor        =   &H00C0C0C0&
  18.       BarColorInactive=   &H00C0C0C0&
  19.       BarHeight       =   25
  20.       BarStyle        =   3  'Raised
  21.       ButtonsRight    =   3  '3
  22.       CapAlign        =   1  'Left Center
  23.       CapColor        =   &H00800000&
  24.       CapColorInactive=   &H00800000&
  25.       Caption         =   "   New Tools"
  26.       FontBold        =   -1  'True
  27.       FontItalic      =   0   'False
  28.       FontName        =   "MS Sans Serif"
  29.       FontSize        =   9.75
  30.       FontStrikethru  =   0   'False
  31.       FontUnderline   =   0   'False
  32.       FrameColor      =   &H00C0C0C0&
  33.       FrameColorInactive=   &H00C0C0C0&
  34.       FrameCorners    =   0   'False
  35.       FrameStyle      =   3  'Raised Form
  36.       FrameWidth      =   8
  37.       Left            =   5355
  38.       MinHeight       =   2300
  39.       MinWidth        =   5600
  40.       PictLeft0       =   FFUTURE.FRX:0000
  41.       PictRight0      =   FFUTURE.FRX:0152
  42.       PictRight1      =   FFUTURE.FRX:0224
  43.       PictRight2      =   FFUTURE.FRX:02FE
  44.       Top             =   105
  45.    End
  46.    Begin Label Label1 
  47.       BackColor       =   &H0080FFFF&
  48.       BackStyle       =   0  'Transparent
  49.       Caption         =   "Create forms that look the same way in 16 and 32 bits by customizing the form icons with VSINFORM"
  50.       FontBold        =   -1  'True
  51.       FontItalic      =   0   'False
  52.       FontName        =   "MS Sans Serif"
  53.       FontSize        =   13.5
  54.       FontStrikethru  =   0   'False
  55.       FontUnderline   =   0   'False
  56.       Height          =   1170
  57.       Left            =   210
  58.       TabIndex        =   0
  59.       Top             =   105
  60.       Width           =   5055
  61.    End
  62. Option Explicit
  63. Sub Form_Load ()
  64.   VSInform1.CustomFrame = True
  65. End Sub
  66. Sub Form_Paint ()
  67.   Print
  68. End Sub
  69. Sub vsInForm1_ClickRButton (Button As Integer)
  70.   Select Case Button
  71.     Case 0
  72.       Unload Me
  73.     Case 1
  74.       vsInform1_DblClickCaption
  75.     Case 2
  76.       Me.WindowState = 1
  77.   End Select
  78. End Sub
  79. Sub vsInform1_DblClickCaption ()
  80.   If WindowState = 0 Then
  81.     WindowState = 2
  82.   ElseIf WindowState = 2 Then
  83.     WindowState = 0
  84.   End If
  85. End Sub
  86.